home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / help / wc4g < prev    next >
Encoding:
Text File  |  1994-08-11  |  505 b   |  33 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4.  
  5. CFLAGS =  -DMSDOS
  6.  
  7. all: helpcall.exe ~\help\example.hlp
  8.  
  9. .c.obj :
  10.     wcc386 $(CFLAGS) $*.c
  11.  
  12. O = helpcall.obj
  13.  
  14. helpcall.exe:         wc4g.tag wc4g $(O)
  15.     wlink N helpcall.exe f helpcall l sys op st=30k,caseexact
  16.  
  17. wc4g.tag:
  18.     del *.tag
  19.     del *.obj
  20.     del *.map
  21.     del *.rsp
  22.     del *.cfg
  23.     del *.exe
  24.     echo >wc4g.tag
  25.  
  26. ~\help\example.hlp:
  27.     cd .\example
  28.     helplib @example.rsp
  29.     copy example.hlp ~\help\.
  30.     del example.hlp
  31.     cd  ..
  32.  
  33.